|
$db->p("account_id"); ?>
|
$db->p("account_name"); ?>
|
$orders = show_client_orders($db->f("account_id"));
if ($orders == 0) {
echo " No Orders";
} else {
?>
">Orders(
echo $orders;
?>
)
} ?>
|
$domains = show_client_domains($db->f("account_id"));
if ($orders == 0) {
echo " No Domains";
} else {
?>
">Domains(
echo $domains;
?>
)
}
?>
|
$bill = count_billing($db->f("account_id"));
if ($bill == 0) {
echo " Not Billed";
} else {
?>
">Billing
Records
(
echo $bill;
?>
)
}
?>
|
">edit |